【例子介绍】基于XMPP(JABBER)协议的IM即时通讯客户端源码
【相关图片】
【源码结构】
.
├── VKMessengerFMX
│ ├── Android
│ │ ├── Debug
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── ChatFMX.classes
│ │ │ │ └── classes.dex
│ │ │ ├── classes.dex
│ │ │ ├── colors.xml
│ │ │ ├── splash_image_def.xml
│ │ │ ├── strings.xml
│ │ │ ├── styles-v21.xml
│ │ │ └── styles.xml
│ │ └── Release
│ │ ├── AndroidManifest.xml
│ │ ├── ChatFMX
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── assets
│ │ │ │ ├── deployinfo
│ │ │ │ │ └── deployedassets.txt
│ │ │ │ └── internal
│ │ │ │ ├── doc_icons.png
│ │ │ │ ├── im_favorites_100.png
│ │ │ │ ├── msg_warning.png
│ │ │ │ ├── payment_request_snippet.png
│ │ │ │ ├── payment_snippet.png
│ │ │ │ └── pv_layer_controls.png
│ │ │ ├── bin
│ │ │ │ └── ChatFMX.apk.idsig
│ │ │ ├── classes
│ │ │ │ └── classes.dex
│ │ │ ├── library
│ │ │ │ └── lib
│ │ │ │ └── armeabi-v7a
│ │ │ │ └── gdbserver
│ │ │ └── res
│ │ │ ├── drawable
│ │ │ │ └── splash_image_def.xml
│ │ │ ├── drawable-hdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ └── ic_notification.png
│ │ │ ├── drawable-large
│ │ │ │ └── splash_image.png
│ │ │ ├── drawable-ldpi
│ │ │ │ └── ic_launcher.png
│ │ │ ├── drawable-mdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ └── ic_notification.png
│ │ │ ├── drawable-normal
│ │ │ │ └── splash_image.png
│ │ │ ├── drawable-small
│ │ │ │ └── splash_image.png
│ │ │ ├── drawable-xhdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ └── ic_notification.png
│ │ │ ├── drawable-xlarge
│ │ │ │ └── splash_image.png
│ │ │ ├── drawable-xxhdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ └── ic_notification.png
│ │ │ ├── drawable-xxxhdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ └── ic_notification.png
│ │ │ ├── values
│ │ │ │ ├── colors.xml
│ │ │ │ ├── strings.xml
│ │ │ │ └── styles.xml
│ │ │ └── values-v21
│ │ │ └── styles.xml
│ │ ├── ChatFMX.classes
│ │ │ └── classes.dex
│ │ ├── colors.xml
│ │ ├── splash_image_def.xml
│ │ ├── strings.xml
│ │ ├── styles-v21.xml
│ │ └── styles.xml
│ ├── AndroidManifest.template.xml
│ ├── ChatFMX.Classes.pas
│ ├── ChatFMX.DM.Res.dfm
│ ├── ChatFMX.DM.Res.pas
│ ├── ChatFMX.Events.pas
│ ├── ChatFMX.Frame.Attachment.Album.fmx
│ ├── ChatFMX.Frame.Attachment.Album.pas
│ ├── ChatFMX.Frame.Attachment.Audio.fmx
│ ├── ChatFMX.Frame.Attachment.Audio.pas
│ ├── ChatFMX.Frame.Attachment.AudioMessage.fmx
│ ├── ChatFMX.Frame.Attachment.AudioMessage.pas
│ ├── ChatFMX.Frame.Attachment.AudioPlaylist.fmx
│ ├── ChatFMX.Frame.Attachment.AudioPlaylist.pas
│ ├── ChatFMX.Frame.Attachment.Call.fmx
│ ├── ChatFMX.Frame.Attachment.Call.pas
│ ├── ChatFMX.Frame.Attachment.Document.fmx
│ ├── ChatFMX.Frame.Attachment.Document.pas
│ ├── ChatFMX.Frame.Attachment.Geo.fmx
│ ├── ChatFMX.Frame.Attachment.Geo.pas
│ ├── ChatFMX.Frame.Attachment.Gift.fmx
│ ├── ChatFMX.Frame.Attachment.Gift.pas
│ ├── ChatFMX.Frame.Attachment.Graffiti.fmx
│ ├── ChatFMX.Frame.Attachment.Graffiti.pas
│ ├── ChatFMX.Frame.Attachment.Keyboard.fmx
│ ├── ChatFMX.Frame.Attachment.Keyboard.pas
│ ├── ChatFMX.Frame.Attachment.Link.fmx
│ ├── ChatFMX.Frame.Attachment.Link.pas
│ ├── ChatFMX.Frame.Attachment.Market.fmx
│ ├── ChatFMX.Frame.Attachment.Market.pas
│ ├── ChatFMX.Frame.Attachment.Message.fmx
│ ├── ChatFMX.Frame.Attachment.Message.pas
│ ├── ChatFMX.Frame.Attachment.Messages.fmx
│ ├── ChatFMX.Frame.Attachment.Messages.pas
│ ├── ChatFMX.Frame.Attachment.Money.fmx
│ ├── ChatFMX.Frame.Attachment.Money.pas
│ ├── ChatFMX.Frame.Attachment.Photo.fmx
│ ├── ChatFMX.Frame.Attachment.Photo.pas
│ ├── ChatFMX.Frame.Attachment.PinnedMessage.fmx
│ ├── ChatFMX.Frame.Attachment.PinnedMessage.pas
│ ├── ChatFMX.Frame.Attachment.Poll.fmx
│ ├── ChatFMX.Frame.Attachment.Poll.pas
│ ├── ChatFMX.Frame.Attachment.ReplyMessage.fmx
│ ├── ChatFMX.Frame.Attachment.ReplyMessage.pas
│ ├── ChatFMX.Frame.Attachment.Sticker.fmx
│ ├── ChatFMX.Frame.Attachment.Sticker.pas
│ ├── ChatFMX.Frame.Attachment.Story.fmx
│ ├── ChatFMX.Frame.Attachment.Story.pas
│ ├── ChatFMX.Frame.Attachment.Video.fmx
│ ├── ChatFMX.Frame.Attachment.Video.pas
│ ├── ChatFMX.Frame.Attachment.Wall.fmx
│ ├── ChatFMX.Frame.Attachment.Wall.pas
│ ├── ChatFMX.Frame.Attachment.WallFwd.fmx
│ ├── ChatFMX.Frame.Attachment.WallFwd.pas
│ ├── ChatFMX.Frame.Attachment.fmx
│ ├── ChatFMX.Frame.Attachment.pas
│ ├── ChatFMX.Frame.Chat.fmx
│ ├── ChatFMX.Frame.Chat.pas
│ ├── ChatFMX.Frame.Keyboard.fmx
│ ├── ChatFMX.Frame.Keyboard.pas
│ ├── ChatFMX.Frame.Loading.fmx
│ ├── ChatFMX.Frame.Loading.pas
│ ├── ChatFMX.Frame.Message.Base.fmx
│ ├── ChatFMX.Frame.Message.Base.pas
│ ├── ChatFMX.Frame.Message.fmx
│ ├── ChatFMX.Frame.Message.pas
│ ├── ChatFMX.Frame.MessageAction.fmx
│ ├── ChatFMX.Frame.MessageAction.pas
│ ├── ChatFMX.Frame.MessageDate.fmx
│ ├── ChatFMX.Frame.MessageDate.pas
│ ├── ChatFMX.Frame.Window.Geo.fmx
│ ├── ChatFMX.Frame.Window.Geo.pas
│ ├── ChatFMX.Frame.Window.OpenLink.fmx
│ ├── ChatFMX.Frame.Window.OpenLink.pas
│ ├── ChatFMX.Frame.Window.Photo.fmx
│ ├── ChatFMX.Frame.Window.Photo.pas
│ ├── ChatFMX.Frame.Window.fmx
│ ├── ChatFMX.Frame.Window.pas
│ ├── ChatFMX.Main.fmx
│ ├── ChatFMX.Main.pas
│ ├── ChatFMX.PreviewManager.pas
│ ├── ChatFMX.Utils.pas
│ ├── ChatFMX.View.ChatItem.pas
│ ├── ChatFMX.deployproj
│ ├── ChatFMX.dpr
│ ├── ChatFMX.dproj
│ ├── ChatFMX.gex
│ ├── ChatFMX.res
│ ├── FMX.ListBox.pas
│ ├── Res
│ │ ├── Zxx0hX5EiZw.jpg
│ │ ├── doc_icons.png
│ │ ├── im_favorites_100.png
│ │ ├── msg_warning.png
│ │ ├── payment_request_snippet.png
│ │ ├── payment_snippet.png
│ │ ├── pv_layer_controls.png
│ │ ├── screen1.png
│ │ └── video_play_small.png
│ ├── VKMessengerGroup.groupproj
│ └── Win32
│ └── Release
└── 基于XMPP(JABBER)协议的IM即时通讯客户端源码_VKMessengerFMX.zip
32 directories, 145 files
评论